Functions

contains
Link copied to clipboard
common
open suspend override fun contains(id: IdType): Boolean
count
Link copied to clipboard
common
open suspend override fun count(): Long
create
Link copied to clipboard
common
abstract suspend fun create(values: List<InputValueType>): List<ObjectType>
deleteById
Link copied to clipboard
common
abstract suspend fun deleteById(ids: List<IdType>)
getById
Link copied to clipboard
common
open suspend override fun getById(id: IdType): ObjectType?
getByPagination
Link copied to clipboard
common
open suspend override fun getByPagination(pagination: Pagination): PaginationResult<ObjectType>
update
Link copied to clipboard
common
abstract suspend fun update(values: List<UpdatedValuePair<IdType, InputValueType>>): List<ObjectType>
abstract suspend fun update(id: IdType, value: InputValueType): ObjectType?

Properties

deletedObjectsIdsFlow
Link copied to clipboard
common
abstract val deletedObjectsIdsFlow: Flow<IdType>
newObjectsFlow
Link copied to clipboard
common
abstract val newObjectsFlow: Flow<ObjectType>
updatedObjectsFlow
Link copied to clipboard
common
abstract val updatedObjectsFlow: Flow<ObjectType>